home *** CD-ROM | disk | FTP | other *** search
/ Eagles Nest BBS 7 / Eagles_Nest_Mac_Collection_Disc_7.TOAST / Commercial Services / CIS Archiver / Companion 1.06.rsrc / 4DTE_15001 < prev    next >
Text File  |  1990-06-22  |  1KB  |  24 lines

  1. GetVersion  v1.0
  2.  
  3. by Dan Wasserman
  4. ACIUS Tech Support
  5.  
  6. GetVersion will get the current version number of your database as determined by the 'vers' resource.  Your 4D procedure may change this value and write it back to the 'vers' resource with the SetVersion external.
  7.  
  8. The 'vers' resource is read by Apple's System 6.0.x when you do a 'Get Info' on a document.  This means that you will be able to look up the version number of your database without having to actually go into it.
  9.  
  10. If you were storing your version numbers withing a database you probably had some problems whenever it was cloned.  GetVersion and SetVersion keep the version numbers outside of the database and thus are not affected by cloning.
  11.  
  12. GetVersion(str1;str2;str3;int1;int2;int3;int4)
  13.  
  14. str1=Top value in 'Get Info' box
  15. str2=Bottom value in 'Get Info' box
  16. str3=short string (see Tech note 126)
  17. int1=version number
  18. int2=revision number
  19. int3=development, alpha, beta, release
  20. int4=Build Number
  21.  
  22. For further illumination of this mystery please consult Technical Note #126 or the Example database.
  23.  
  24. -Dan